/* home-css */
.home {
    display: static;
    justify-content: space-between!important;
    align-items: center!important;
    padding: 100px 50px 80px 50px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  
  .home-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  
  .home-content {
    flex: 1;
    max-width: 600px;
  }
  
  .home-content h3 {
    font-size: 24px;
    margin: 0;
    color: #fffbfb!important;
  }
  
  .home-content h1 {
    font-size: 48px;
    margin: 10px 0;
    font-family: "Bonheur Royale", serif;
    color: #77ffe8!important;
    font-weight: 600;
  }
  
  .home-content h3 span {
    color: #adb9ff;
    font-weight: bold;
  }
  
  .home-p{
    font-size: 18px;
    margin-top: 15px;
    color: #ffffff!important;
    line-height: 1.6;
  }
  
  .home-content span {
    font-weight: bold;
    color: #adb9ff;
  }

  .social-media {
    justify-content: center;
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .social-media a:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(225, 215, 215, 0.5);
    color: #373737;
  }
  
  .home-img-container {
    flex: 1;
    display: flex;
    padding-left: 30px;
    justify-content: center;
    align-items: center;
  }
  
  .home-img {
    z-index:100;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.home-img {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: center;
}
.home-img::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: conic-gradient(#ff00bf, #0000ff, #00f7ff,#a2ff00);
    animation: rotateRing 4s linear infinite;
    z-index: -1;
}
  @media (max-width: 768px) {

    /* Home Section */
    .home {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 80px 50px;
        width: 100%;
        max-width: 1200px;
        margin: auto;
    }
    
    .home-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    
    .home-img-container {
        order: -1;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .home-img {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .home-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .home-content {
        flex: 1;
        max-width: 600px;
        text-align: center;
    }
    
    .home-content h3 {
        font-size: 24px;
        margin: 0;
        color: #555;
    }
    
    .home-content h1 {
        font-size: 48px;
        margin: 10px 0;
        color: #222;
    }
    
    .home-content p {
        font-size: 18px;
        margin-top: 15px;
        color: #666;
        line-height: 1.6;
    }
    
    .social-media {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
}